All Questions
1 question
2votes
4answers
276views
Is creating "shortcut methods" in the superclass of a controller Bad Practice?
Consider the following simplified example: abstract public class Controller { protected final boolean isUserAdmin() { return getServiceContainer().getUserService().isUserAdmin(); } ...